home *** CD-ROM | disk | FTP | other *** search
/ Easy Tennis / Easy Tennis.iso / pc / program / logo.dxr / Lingo_3.ls < prev    next >
Encoding:
Text File  |  1998-03-24  |  169 b   |  11 lines

  1. on exitFrame
  2.   hDecreaseSoundEffect()
  3. end
  4.  
  5. on hDecreaseSoundEffect
  6.   repeat with i = 255 down to 0
  7.     set the volume of sound 1 to i
  8.     updateStage()
  9.   end repeat
  10. end
  11.